home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 38 / Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso / -seriously_amiga- / misc / felix / source / felixbase.h < prev    next >
C/C++ Source or Header  |  1999-01-25  |  662b  |  22 lines

  1. //*************************************************************************//
  2. // Filename:    FelixBase.h
  3. // Autor:       Christian Taulien of Strange Intelligence
  4. // Purpose:     Definition of FelixBase
  5. // Creation:    18. März 1998
  6. //*************************************************************************//
  7.  
  8. #ifndef TAULIEN_FELIXBASE_H
  9. #define TAULIEN_FELIXBASE_H
  10.  
  11. #include <exec/types.h>
  12. #include <exec/libraries.h>
  13.  
  14. struct FelixBase
  15. {
  16.   struct Library  api_LibNode;   // standard library
  17.   UWORD           api_pad;       // we are now longwod aligned
  18.   ULONG           api_Magic;     // used to recognize Felix libraries
  19. };
  20.  
  21. #endif // TAULIEN_FELIXBASE_H
  22.